// <copyright file="RhythmicDegree.cs" company="Largo"> // Copyright (c) 2009 All Right Reserved // </copyright> // <author> vl </author> // <email></email> // <date>2009-01-01</date> // <summary>Contains ...</summary> using JetBrains.Annotations; namespace LargoCommon.Music { /// <summary> Degree of rhythmical systems. </summary> public enum RhythmicDegree { /// <summary> Degree of system. </summary> [UsedImplicitly] None = 0, /// <summary> Degree of system. </summary> Shape = 2, /// <summary> Degree of system. </summary> Structure = 3 } }